home *** CD-ROM | disk | FTP | other *** search
- #include <windows.h>
- #include <DrivInit.h>
-
- int FAR PASCAL LibMain( HANDLE hInstance, WORD wDataSeg, WORD wHeapSize, LPSTR lpszCmdLine)
- {
- if (wHeapSize > 0)
- UnlockData(0);
- return 1;
- }
-
- int FAR PASCAL CallProc( LPFNDEVMODE lpfnMode,
- HWND hWnd,
- HANDLE hDriver,
- DEVMODE FAR *lpDevModeOutput,
- LPSTR lpDeviceName,
- LPSTR lpPort,
- DEVMODE FAR *lpDevModeInput,
- LPSTR lpProfile,
- WORD wMode)
- {
-
- return lpfnMode( hWnd,
- hDriver,
- lpDevModeOutput,
- lpDeviceName,
- lpPort,
- lpDevModeInput,
- lpProfile,
- wMode);
-
-
- }
-
-